Sha256: 38f0e734116e5d7b26fa0d00cdf2d818b75fe632eab597e493fdd0c1221f0c0a

Contents?: true

Size: 395 Bytes

Versions: 6

Compression:

Stored size: 395 Bytes

Contents

require File.expand_path(File.dirname(__FILE__) + '/spec_helper')

describe Grope::WSOWrapper do
  it "should wrap" do
    Grope::WSOWrapper.wrap(nil).should eql(nil)
    Grope::WSOWrapper.wrap(true.to_ns).should eql(true)
    Grope::WSOWrapper.wrap(false.to_ns).should eql(false)
    Grope::WSOWrapper.wrap(1.to_ns).should eql(1)
    Grope::WSOWrapper.wrap("a".to_ns).should eql("a")
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
grope-0.2.2 spec/wso_wrapper_spec.rb
grope-0.2.0 spec/wso_wrapper_spec.rb
grope-0.1.4 spec/wso_wrapper_spec.rb
grope-0.1.3 spec/wso_wrapper_spec.rb
grope-0.1.2 spec/wso_wrapper_spec.rb
grope-0.1.1 spec/wso_wrapper_spec.rb