OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/spec/views/new.html.erb_spec.rb

24 lines
623 B

require 'spec_helper'
describe 'taskboard_card_configurations/new' do
let(:config) { FactoryGirl.build(:taskboard_card_configuration) }
before do
assign(:config, config)
end
it 'shows new taskboard card configuration empty inputs' do
render
rendered.should have_selector("form") do |f|
f.should have_selector("input", value: "")
f.should have_selector("input", value: "")
f.should have_selector("input", value: "")
f.should have_selector("input", value: "")
f.should have_selector("input", value: "")
f.should have_selector("input", value: "")
end
end
end