Sha256: f6dae07c427508751d7f9444cf25421c12bfaadcb6aa4339cac2d26154d7d9e1

Contents?: true

Size: 1.19 KB

Versions: 6

Compression:

Stored size: 1.19 KB

Contents

require File.dirname(__FILE__) + '/../spec_helper.rb'
require 'aquarium/extensions/symbol'

describe "Symbol#empty?" do
  
  it "should return true for an empty symbol with whitespace" do
    :" \t ".empty?.should be_true
  end
  
  it "should return false for a non-empty symbol" do
    :x.empty?.should be_false
  end
end

describe "Symbol#strip" do
  it "should return equivalent Symbol if there is no leading or trailing whitespace." do
    :a.strip.should == :a
  end

  it "should return new Symbol with removed leading and/or trailing whitespace, when present." do
    :" \ta\t ".strip.should == :a
  end
end

describe "Symbol#<=>" do
  it "should return < 0 if the string representation of the left-hand side symbol is less than the string representation of the right-hand side symbol." do
    (:a <=> :b).should == -1
  end

  it "should return > 0 if the string representation of the left-hand side symbol is greater than the string representation of the right-hand side symbol." do
    (:b <=> :a).should == 1
  end

  it "should return 0 if the string representation of the left-hand side symbol is equal to the string representation of the right-hand side symbol." do
    (:a <=> :a).should == 0
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
aquarium-0.1.6 spec/aquarium/extensions/symbol_spec.rb
aquarium-0.1.8 spec/aquarium/extensions/symbol_spec.rb
aquarium-0.1.0 spec/aquarium/extensions/symbol_spec.rb
aquarium-0.1.5 spec/aquarium/extensions/symbol_spec.rb
aquarium-0.1.7 spec/aquarium/extensions/symbol_spec.rb
aquarium-0.2.0 spec/aquarium/extensions/symbol_spec.rb