Sha256: 05ea985b17d37cd8b25f4f21cc0d8452aad8f0e130786b76320f2926843edc97

Contents?: true

Size: 1.38 KB

Versions: 52

Compression:

Stored size: 1.38 KB

Contents

require File.expand_path('../../spec_helper', __FILE__)

ruby_version_is "1.9" do
  describe "Magic comment" do
    it "is optional" do
      lambda { eval("__ENCODING__") }.should_not raise_error(SyntaxError)
    end

    it "determines __ENCODING__" do
      eval(<<EOS.force_encoding("US-ASCII")).should == Encoding::ASCII_8BIT
# coding: ASCII-8BIT
__ENCODING__
EOS
    end

    it "is case-insensitive" do
      eval(<<EOS.force_encoding("US-ASCII")).should == Encoding::ASCII_8BIT
# CoDiNg:   aScIi-8bIt
__ENCODING__
EOS
    end

    it "must be at the first line" do
      eval(<<EOS.force_encoding("US-ASCII")).should == Encoding::US_ASCII

# coding: ASCII-8BIT
__ENCODING__
EOS
    end

    it "must be at the first of line" do
      eval(<<EOS.force_encoding("US-ASCII")).should == Encoding::US_ASCII
1+1 # coding: ASCII-8BIT
__ENCODING__
EOS
    end

    it "can be after the shebang" do
      eval(<<EOS.force_encoding("US-ASCII")).should == Encoding::ASCII_8BIT
#!/usr/bin/ruby -Ku
# coding: ASCII-8BIT
__ENCODING__
EOS
    end

    it "can take Emacs style" do
      eval(<<EOS.force_encoding("US-ASCII")).should == Encoding::ASCII_8BIT
# -*- coding: ascii-8bit -*-
__ENCODING__
EOS
    end

    it "can take vim style" do
      eval(<<EOS.force_encoding("US-ASCII")).should == Encoding::ASCII_8BIT
# vim: filetype=ruby, fileencoding=ascii-8bit, tabsize=3, shiftwidth=3
__ENCODING__
EOS
    end
  end
end

Version data entries

52 entries across 52 versions & 2 rubygems

Version Path
rhodes-7.6.0 spec/framework_spec/app/spec/language/magic_comment_spec.rb
rhodes-7.5.1 spec/framework_spec/app/spec/language/magic_comment_spec.rb
rhodes-7.4.1 spec/framework_spec/app/spec/language/magic_comment_spec.rb
rhodes-7.1.17 spec/framework_spec/app/spec/language/magic_comment_spec.rb
rhodes-6.2.0 spec/framework_spec/app/spec/language/magic_comment_spec.rb
rhodes-6.0.11 spec/framework_spec/app/spec/language/magic_comment_spec.rb
rhodes-5.5.18 spec/framework_spec/app/spec/language/magic_comment_spec.rb
rhodes-5.5.17 spec/framework_spec/app/spec/language/magic_comment_spec.rb
rhodes-5.5.15 spec/framework_spec/app/spec/language/magic_comment_spec.rb
rhodes-5.5.0.22 spec/framework_spec/app/spec/language/magic_comment_spec.rb
rhodes-5.5.2 spec/framework_spec/app/spec/language/magic_comment_spec.rb
rhodes-5.5.0.7 spec/framework_spec/app/spec/language/magic_comment_spec.rb
rhodes-5.5.0.3 spec/framework_spec/app/spec/language/magic_comment_spec.rb
rhodes-5.5.0 spec/framework_spec/app/spec/language/magic_comment_spec.rb
tauplatform-1.0.3 spec/framework_spec/app/spec/language/magic_comment_spec.rb
tauplatform-1.0.2 spec/framework_spec/app/spec/language/magic_comment_spec.rb
tauplatform-1.0.1 spec/framework_spec/app/spec/language/magic_comment_spec.rb
rhodes-3.5.1.12 spec/framework_spec/app/spec/language/magic_comment_spec.rb
rhodes-3.3.5 spec/framework_spec/app/spec/language/magic_comment_spec.rb
rhodes-3.4.2 spec/framework_spec/app/spec/language/magic_comment_spec.rb