Sha256: a259f0c88374d8547f15c3d8b45b153250edf16fe731825fce8b630cfbe5ab90

Contents?: true

Size: 263 Bytes

Versions: 3

Compression:

Stored size: 263 Bytes

Contents

require File.dirname(__FILE__) + "/../test_helper"

Expectations do
  
  expect -1 do
    :alpha <=> :beta
  end

  expect 0 do
    :alpha <=> :alpha
  end

  expect 1 do
    :beta <=> :alpha
  end

  expect [:alpha, :beta] do
    [:beta, :alpha].sort
  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
thoughtful-0.0.7 test/thoughtful/symbol_test.rb
thoughtful-0.0.6 test/thoughtful/symbol_test.rb
thoughtful-0.0.8 test/thoughtful/symbol_test.rb