summaryrefslogtreecommitdiffstats
path: root/lib/__tests__/Rating-test.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/__tests__/Rating-test.js')
-rw-r--r--lib/__tests__/Rating-test.js30
1 files changed, 0 insertions, 30 deletions
diff --git a/lib/__tests__/Rating-test.js b/lib/__tests__/Rating-test.js
deleted file mode 100644
index 75734cc..0000000
--- a/lib/__tests__/Rating-test.js
+++ /dev/null
@@ -1,30 +0,0 @@
-var React = require('react/addons');
-var TestUtils = React.addons.TestUtils;
-var expect = require('expect');
-var {Rating, RatingIcon} = require('../');
-
-describe('Rating', function() {
-
- it('should render 5 RatingIcons as default', function() {
- var ratingWrapper = TestUtils.renderIntoDocument(
- <div>
- <Rating onRate={() => {}} />
- </div>
- );
-
- var ratingIcons = TestUtils.scryRenderedComponentsWithType(ratingWrapper, RatingIcon);
- expect(ratingIcons.length).toBe(5, 'Rating is not rendering 5 icons as default');
- });
-
- it('should render 3 RatingIcons', function() {
- var ratingWrapper = TestUtils.renderIntoDocument(
- <div>
- <Rating onRate={() => {}} maxRating={3} />
- </div>
- );
-
- var ratingIcons = TestUtils.scryRenderedComponentsWithType(ratingWrapper, RatingIcon);
- expect(ratingIcons.length).toBe(3, 'Rating is not renderin 3 icons');
- });
-
-});