diff --git a/spec/features/simple_api_spec.rb b/spec/features/simple_api_spec.rb new file mode 100644 index 0000000..a62f244 --- /dev/null +++ b/spec/features/simple_api_spec.rb @@ -0,0 +1,10 @@ +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 \ No newline at end of file