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 #725 from jstepien/untagging
Untagged some specs
- Loading branch information
Showing
with
0 additions
and 29 deletions.
- +0 −1 spec/tags/core/array/pack/x_tags.txt
- +0 −1 spec/tags/core/module/alias_method_tags.txt
- +0 −2 spec/tags/core/module/include_tags.txt
- +0 −1 spec/tags/language/alias_tags.txt
- +0 −1 spec/tags/language/private_tags.txt
- +0 −9 spec/tags/language/proc_tags.txt
- +0 −14 spec/tags/language/singleton_class_tags.txt
@@ -1,3 +1 @@ | ||
fails:Module#include imports instance methods to modules and classes | ||
fails:Module#include does not import methods to modules and classes | ||
fails:Module#include preserves ancestor order |
@@ -1,6 +1,5 @@ | ||
fails:The private keyword marks following methods as being private | ||
fails:The private keyword is overridden when a new class is opened | ||
fails:The private keyword is no longer in effect when the class is closed | ||
fails:The private keyword changes visibility of previously called method | ||
fails:The private keyword changes visiblity of previously called methods with same send/call site | ||
fails:The private keyword changes the visibility of the existing method in the subclass |
@@ -1,11 +1,2 @@ | ||
fails:A Proc taking zero arguments raises an ArgumentErro if a value is passed | ||
fails:A Proc taking || arguments raises an ArgumentError if a value is passed | ||
fails:A Proc taking |a| arguments raises an ArgumentError if no value is passed | ||
fails:A Proc taking |a, b| arguments raises an ArgumentError if passed no values | ||
fails:A Proc taking |a, b| arguments raises an ArgumentError if passed one value | ||
fails:A Proc taking |a, b| arguments does not call #to_ary to convert a single passed object to an Array | ||
fails:A Proc taking |a, *b| arguments raises an ArgumentError if passed no values | ||
fails:A Proc taking |a, | arguments raises an ArgumentError when passed no values | ||
fails:A Proc taking |a, | arguments raises an ArgumentError when passed more than one value | ||
fails:A Proc taking |(a, b)| arguments raises an ArgumentError when passed no values | ||
fails:A Proc taking |(a, b)| arguments raises an TypeError if #to_ary does not return an Array |