require 'spec_helper' describe ArchetypeDatum do before(:each) do @valid_attributes = { :oid => "value for oid", :archetype_id => "value for archetype_id", :concept => "value for concept", :path => "value for path", :text_data => "value for text_data", :integer_data => 1, :real_data => 0.23 } end it "should create a new instance given valid attributes" do ArchetypeDatum.create!(@valid_attributes) end end