1
0
Fork 0
mirror of https://github.com/awesome-print/awesome_print synced 2023-03-27 23:22:34 -04:00
awesome_print/spec/mongo_mapper_spec.rb

44 lines
1 KiB
Ruby
Raw Normal View History

2011-03-29 03:48:52 -04:00
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
require "mongo_mapper"
require "ap/mixin/mongo_mapper"
if defined?(MongoMapper)
class User
include MongoMapper::Document
key :first_name, String
key :last_name, String
end
describe "AwesomePrint/MongoMapper" do
before :each do
@ap = AwesomePrint.new(:plain => true)
end
it "should print for a class instance" do
user = User.new(:first_name => "Al", :last_name => "Capone")
out = @ap.send(:awesome, user)
str = <<-EOS.strip
#<User:0x01234567> {
"_id" => BSON::ObjectId('4d9183739a546f6806000001'),
"last_name" => "Capone",
"first_name" => "Al"
}
EOS
out.gsub!(/'([\w]+){23}'/, "'4d9183739a546f6806000001'")
out.gsub!(/0x([a-f\d]+)/, "0x01234567")
out.should == str
end
it "should print for a class" do
@ap.send(:awesome, User).should == <<-EOS.strip
class User < Object {
"_id" => :object_id,
"last_name" => :string,
"first_name" => :string
}
EOS
end
end
end