Skip to content

Commit

Permalink
RawData spec has been added
Browse files Browse the repository at this point in the history
  • Loading branch information
Yurii Rashkovskii committed Apr 27, 2008
1 parent bad553f commit 472c833
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions spec/lib/strokedb/views/raw_data_meta_spec.rb
@@ -0,0 +1,22 @@
require File.dirname(__FILE__) + '/spec_helper'

describe "RawData(data)" do

before(:each) do
setup_default_store
@raw_data = RawData("some data")
end

it "should create document with data slot" do
@raw_data.data.should == "some data"
end

it "should be a RawData" do
@raw_data.should be_a_kind_of(RawData)
end

it "should not be saved" do
@raw_data.should be_new
end

end

0 comments on commit 472c833

Please sign in to comment.