Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge pull request #807 from jstepien/untagging
Untag some passing specs
- Loading branch information
Showing
with
0 additions
and 40 deletions.
- +0 −6 spec/tags/core/array/inspect_tags.txt
- +0 −6 spec/tags/core/array/to_s_tags.txt
- +0 −1 spec/tags/core/bignum/div_tags.txt
- +0 −1 spec/tags/core/bignum/divide_tags.txt
- +0 −1 spec/tags/core/bignum/to_f_tags.txt
- +0 −3 spec/tags/core/file/size_tags.txt
- +0 −1 spec/tags/core/file/stat/zero_tags.txt
- +0 −2 spec/tags/core/fixnum/bit_and_tags.txt
- +0 −1 spec/tags/core/fixnum/bit_or_tags.txt
- +0 −2 spec/tags/core/fixnum/bit_xor_tags.txt
- +0 −2 spec/tags/core/io/pipe_tags.txt
- +0 −1 spec/tags/core/kernel/freeze_tags.txt
- +0 −2 spec/tags/core/string/index_tags.txt
- +0 −9 spec/tags/core/string/rindex_tags.txt
- +0 −1 spec/tags/core/string/scan_tags.txt
- +0 −1 spec/tags/core/time/hash_tags.txt
@@ -1,2 +1 @@ | ||
fails:Bignum#div returns self divided by other | ||
fails:Bignum#div raises a TypeError when given a non-Integer |
@@ -1,2 +1 @@ | ||
fails:Bignum#/ returns self divided by other | ||
fails:Bignum#/ raises a TypeError when given a non-Integer |
@@ -1,3 +1 @@ | ||
fails:Fixnum#& returns self bitwise AND other | ||
fails:Fixnum#& returns self bitwise AND a Bignum | ||
fails:Fixnum#& raises a TypeError when passed a Float |
@@ -1,2 +1 @@ | ||
fails:Fixnum#| returns self bitwise OR other | ||
fails:Fixnum#| raises a TypeError when passed a Float |
@@ -1,3 +1 @@ | ||
fails:Fixnum#^ returns self bitwise EXCLUSIVE OR other | ||
fails:Fixnum#^ returns self bitwise EXCLUSIVE OR a Bignum | ||
fails:Fixnum#^ raises a TypeError when passed a Float |
@@ -1,3 +1,2 @@ | ||
fails:Kernel#freeze freezes immediate values | ||
fails:Kernel#freeze causes mutative calls to raise RuntimeError | ||
fails:Kernel#freeze causes instance_variable_set to raise RuntimeError |
@@ -1,2 +1 @@ | ||
fails:Time#hash returns a Fixnum | ||
fails:Time#hash is stable |