Sha256: c9379f3ff6d6d1b02fc32365a1da5d8149197e07547f4a12d90f4f3a8b4915cb
Contents?: true
Size: 1.47 KB
Versions: 1
Compression:
Stored size: 1.47 KB
Contents
# Copyright 2010 Sean Cribbs, Sonian Inc., and Basho Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. require File.expand_path("../../../spec_helper", __FILE__) describe "Ripple Persistence" do before :all do switch_to_test_node Object.module_eval do class Widget include Ripple::Document property :name, String property :size, Integer end end end before :each do @widget = Widget.new end it "should save an object to the riak database" do @widget.save @found = Widget.find(@widget.key) @found.should be_a(Widget) end it "should save attributes properly to riak" do @widget.attributes = {:name => 'Sprocket', :size => 10} @widget.save @found = Widget.find(@widget.key) @found.name.should == 'Sprocket' @found.size.should == 10 end after :each do Widget.destroy_all end after :all do Object.send(:remove_const, :Widget) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ripple-0.7.0 | spec/integration/ripple/persistence_spec.rb |