Sha256: e8e45823f9829f6fa18cc38100899a3ef146c249a78f7cc4851fb648699296da

Contents?: true

Size: 1.51 KB

Versions: 5

Compression:

Stored size: 1.51 KB

Contents

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

describe StorageRoom::Entry do
  before(:each) do
    @string_field = StorageRoom::StringField.new(:name => 'Name', :identifier => 'name')
    @collection = StorageRoom::Collection.new(:name => 'Report', :fields => [@string_field])
    @collection.response_data[:@url] = '/collections/COLLECTION_ID'
    @collection.entry_class
  end
  
  context "Class" do
    context "Methods" do      
      describe "#show_path" do
        it "should be defined" do
          Report.show_path(1).should == '/collections/COLLECTION_ID/entries/1'
        end
      end
      
      describe "#index_path" do
        it "should be defined" do
          Report.index_path.should == '/collections/COLLECTION_ID/entries'
        end
      end
            
      describe "#search_path" do
        it "should be defined" do
          Report.search_path(:test =>1).should == '/collections/COLLECTION_ID/entries?test=1'
        end
      end
      
      describe "#json_name" do
        it "should be defined" do
          StorageRoom::Entry.json_name.should == 'entry'
          Report.json_name.should == 'entry'
        end
      end
      
      describe "#search" do
        it "should load" do
          pending
        end
      end
    end
    
  end
  
  context "Instance" do
    before(:each) do
      @entry = Report.new
    end
    
    describe "#collection" do
      it "should return collection" do
        @entry.collection.should == @collection
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
storage_room-0.3.4 spec/storage_room/models/entry_spec.rb
storage_room-0.3.3 spec/storage_room/models/entry_spec.rb
storage_room-0.3.2 spec/storage_room/models/entry_spec.rb
storage_room-0.3.1 spec/storage_room/models/entry_spec.rb
storage_room-0.3.0 spec/storage_room/models/entry_spec.rb