Sha256: ed618d77dc943f5770755b6c3158495e48c22a689fca39788636325505d0ecc6

Contents?: true

Size: 423 Bytes

Versions: 2

Compression:

Stored size: 423 Bytes

Contents

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

describe SimplyUseful do
  it "should load" do
    # if it gets here then it means no errors were raised during loading of the module (probably, right?)
  end

  describe "included modules" do
    
    it "should define Hash.deep_symbolize_keys!" do
      lambda { {"a" => "b"}.deep_symbolize_keys! }.should_not raise_error
    end
    
  end

  
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
simply_useful-0.1.6 spec/simply_useful_spec.rb
simply_useful-0.1.5 spec/simply_useful_spec.rb