Sha256: c0a8b40b9747cf75b27c175d8c085730aa1b39807147979e524b24392a882581
Contents?: true
Size: 439 Bytes
Versions: 11
Compression:
Stored size: 439 Bytes
Contents
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper') describe StorageRoom::Location do before(:each) do @location = StorageRoom::Location.new(:lat => 1, :lng => 2) end context "Configuration" do it "should have keys" do keys = StorageRoom::Location.attribute_options_including_superclasses.keys [:lat, :lng].each do |key| keys.should include(key) end end end end
Version data entries
11 entries across 11 versions & 1 rubygems