Sha256: ae99300ecbc9b174ab0e2bbcd6098f0e7ed35c4c53f6c71cda268c33b36fe71d
Contents?: true
Size: 477 Bytes
Versions: 13
Compression:
Stored size: 477 Bytes
Contents
# -*- encoding: utf-8 -*- require 'spec_helper' describe "page/export" do fixtures :all before(:each) do view.stub(:current_user).and_return(User.find('enjuadmin')) @ability = Object.new @ability.extend(CanCan::Ability) controller.stub(:current_ability) { @ability } end it "renders attributes in <p>" do render # Run the generator again with the --webrat flag if you want to use webrat matchers rendered.should match(/Export/) end end
Version data entries
13 entries across 13 versions & 1 rubygems