mirror of
https://github.com/kbparagua/paloma
synced 2023-03-27 23:21:17 -04:00
11 lines
263 B
Ruby
11 lines
263 B
Ruby
require 'spec_helper'
|
|
|
|
describe "Rendering HTML response of controller's action ", :type => :feature do
|
|
|
|
it "executes the correct javascript callback" do
|
|
visit new_article_path
|
|
|
|
page.has_css?('.callback-details').should == true
|
|
end
|
|
|
|
end
|