Remove selected/unselected specs.
Showing
1 changed file
with
0 additions
and
32 deletions
... | @@ -134,36 +134,4 @@ describe('Routines', function() { | ... | @@ -134,36 +134,4 @@ describe('Routines', function() { |
134 | }); | 134 | }); |
135 | }); | 135 | }); |
136 | }); | 136 | }); |
137 | |||
138 | describe('selected', function() { | ||
139 | describe('with a truthy value', function() { | ||
140 | it('selects the element', function() { | ||
141 | rivets.routines.selected(el, true); | ||
142 | expect(el.selected).toBe(true); | ||
143 | }); | ||
144 | }); | ||
145 | |||
146 | describe('with a falsey value', function() { | ||
147 | it('unselects the element', function() { | ||
148 | rivets.routines.selected(el, false); | ||
149 | expect(el.selected).toBe(false); | ||
150 | }); | ||
151 | }); | ||
152 | }); | ||
153 | |||
154 | describe('unselected', function() { | ||
155 | describe('with a truthy value', function() { | ||
156 | it('unselects the element', function() { | ||
157 | rivets.routines.unselected(el, true); | ||
158 | expect(el.selected).toBe(false); | ||
159 | }); | ||
160 | }); | ||
161 | |||
162 | describe('with a falsey value', function() { | ||
163 | it('selects the element', function() { | ||
164 | rivets.routines.unselected(el, false); | ||
165 | expect(el.selected).toBe(true); | ||
166 | }); | ||
167 | }); | ||
168 | }); | ||
169 | }); | 137 | }); | ... | ... |
-
Please register or sign in to post a comment