Skip to content

Commit

Permalink
Cleanup some passing specs
Browse files Browse the repository at this point in the history
  • Loading branch information
meh committed Dec 26, 2013
1 parent 373eafd commit 09e084c
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions spec/opal/filters/bugs/array.rb
Expand Up @@ -48,13 +48,11 @@
fails "Array#initialize with (array) calls #to_ary to convert the value to an array"
fails "Array#initialize preserves the object's identity even when changing its value"

fails "Array#& tries to convert the passed argument to an Array using #to_ary"
fails "Array#& determines equivalence between elements in the sense of eql?"

fails "Array#- removes an identical item even when its #eql? isn't reflexive"
fails "Array#- doesn't remove an item with the same hash but not #eql?"
fails "Array#- removes an item identified as equivalent via #hash and #eql?"
fails "Array#- tries to convert the passed arguments to Arrays using #to_ary"

fails "Array#* raises a TypeError is the passed argument is nil"
fails "Array#* converts the passed argument to a String rather than an Integer"
Expand Down Expand Up @@ -170,9 +168,6 @@
fails "Array#sort_by! returns an Enumerator if not given a block"
fails "Array#sort_by! sorts array in place by passing each element to the given block"

fails "Array#transpose raises a TypeError if the passed Argument does not respond to #to_ary"
fails "Array#transpose tries to convert the passed argument to an Array using #to_ary"

fails "Array#uniq compares elements based on the value returned from the block"
fails "Array#uniq compares elements with matching hash codes with #eql?"
fails "Array#uniq uses eql? semantics"
Expand Down

0 comments on commit 09e084c

Please sign in to comment.