diff options
Diffstat (limited to 'spec/ruby/core/argf/fixtures')
| -rw-r--r-- | spec/ruby/core/argf/fixtures/bin_file.txt | 2 | ||||
| -rw-r--r-- | spec/ruby/core/argf/fixtures/file1.txt | 2 | ||||
| -rw-r--r-- | spec/ruby/core/argf/fixtures/file2.txt | 2 | ||||
| -rw-r--r-- | spec/ruby/core/argf/fixtures/filename.rb | 3 | ||||
| -rw-r--r-- | spec/ruby/core/argf/fixtures/lineno.rb | 5 | ||||
| -rw-r--r-- | spec/ruby/core/argf/fixtures/rewind.rb | 5 | ||||
| -rw-r--r-- | spec/ruby/core/argf/fixtures/stdin.txt | 2 |
7 files changed, 21 insertions, 0 deletions
diff --git a/spec/ruby/core/argf/fixtures/bin_file.txt b/spec/ruby/core/argf/fixtures/bin_file.txt new file mode 100644 index 0000000000..2545e9037e --- /dev/null +++ b/spec/ruby/core/argf/fixtures/bin_file.txt @@ -0,0 +1,2 @@ +test
+test
diff --git a/spec/ruby/core/argf/fixtures/file1.txt b/spec/ruby/core/argf/fixtures/file1.txt new file mode 100644 index 0000000000..1c89bfbd82 --- /dev/null +++ b/spec/ruby/core/argf/fixtures/file1.txt @@ -0,0 +1,2 @@ +file1.1 +file1.2 diff --git a/spec/ruby/core/argf/fixtures/file2.txt b/spec/ruby/core/argf/fixtures/file2.txt new file mode 100644 index 0000000000..62e8dba00b --- /dev/null +++ b/spec/ruby/core/argf/fixtures/file2.txt @@ -0,0 +1,2 @@ +line2.1 +line2.2 diff --git a/spec/ruby/core/argf/fixtures/filename.rb b/spec/ruby/core/argf/fixtures/filename.rb new file mode 100644 index 0000000000..599c97dd57 --- /dev/null +++ b/spec/ruby/core/argf/fixtures/filename.rb @@ -0,0 +1,3 @@ +puts $FILENAME while ARGF.gets +# returns last current file even when closed +puts $FILENAME diff --git a/spec/ruby/core/argf/fixtures/lineno.rb b/spec/ruby/core/argf/fixtures/lineno.rb new file mode 100644 index 0000000000..079cc92e8e --- /dev/null +++ b/spec/ruby/core/argf/fixtures/lineno.rb @@ -0,0 +1,5 @@ +puts $. +ARGF.gets +puts $. +ARGF.gets +puts $. diff --git a/spec/ruby/core/argf/fixtures/rewind.rb b/spec/ruby/core/argf/fixtures/rewind.rb new file mode 100644 index 0000000000..90a334cd89 --- /dev/null +++ b/spec/ruby/core/argf/fixtures/rewind.rb @@ -0,0 +1,5 @@ +puts ARGF.lineno +ARGF.gets +puts ARGF.lineno +ARGF.rewind +puts ARGF.lineno diff --git a/spec/ruby/core/argf/fixtures/stdin.txt b/spec/ruby/core/argf/fixtures/stdin.txt new file mode 100644 index 0000000000..063cdcb1d4 --- /dev/null +++ b/spec/ruby/core/argf/fixtures/stdin.txt @@ -0,0 +1,2 @@ +stdin.1 +stdin.2 |
