require 'spec_helper' describe "When required" do it "should add the ToViewModel plugin to all MongoMapper Documents and EmbeddedDocuments" do require 'mm_to_view_model/import' MongoMapper::Document.expects(:plugin).with(MongoMapper::Plugins::ToViewModel) MongoMapper::EmbeddedDocument.expects(:plugin).with(MongoMapper::Plugins::ToViewModel) end end