diff options
Diffstat (limited to 'spec/ruby/core/argf/argf_spec.rb')
| -rw-r--r-- | spec/ruby/core/argf/argf_spec.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/ruby/core/argf/argf_spec.rb b/spec/ruby/core/argf/argf_spec.rb new file mode 100644 index 0000000000..f9468539bb --- /dev/null +++ b/spec/ruby/core/argf/argf_spec.rb @@ -0,0 +1,11 @@ +require_relative '../../spec_helper' + +describe "ARGF" do + it "is extended by the Enumerable module" do + ARGF.should.is_a?(Enumerable) + end + + it "is an instance of ARGF.class" do + ARGF.should.instance_of?(ARGF.class) + end +end |
