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.
10 lines
262 B
10 lines
262 B
10 years ago
|
require 'spec_helper'
|
||
|
|
||
|
feature "devise" do
|
||
|
include_context "data"
|
||
|
|
||
|
scenario "modify record" do
|
||
|
visit modify_record_path(:authentication_token => a_record.authentication_token)
|
||
|
expect(page).to have_content Users::RecordsController::MODIFY_OK
|
||
|
end
|
||
|
end
|