Browse Source

unfocus, cut unused

pull/1/head
Nicolae Claudius 13 years ago
parent
commit
0f0e9c7b90
  1. 39
      spec/controllers/records_controller_spec.rb

39
spec/controllers/records_controller_spec.rb

@ -1,33 +1,8 @@
require 'spec_helper'
# This spec was generated by rspec-rails when you ran the scaffold generator.
# It demonstrates how one might use RSpec to specify the controller code that
# was generated by Rails when you ran the scaffold generator.
#
# It assumes that the implementation code is generated by the rails scaffold
# generator. If you are using any extension libraries to generate different
# controller code, this generated spec may or may not pass.
#
# It only uses APIs available in rails and/or rspec-rails. There are a number
# of tools you can use to make these specs even more expressive, but we're
# sticking to rails and rspec-rails APIs to keep things simple and stable.
#
# Compared to earlier versions of this generator, there is very limited use of
# stubs and message expectations in this spec. Stubs are only used when there
# is no simpler way to get a handle on the object needed for the example.
# Message expectations are only used when there is no simpler way to specify
# that an instance is receiving a specific message.
describe RecordsController do
# This should return the minimal set of attributes required to create a valid
# Record. As you add validations to Record, be sure to
# update the return value of this method accordingly.
def valid_attributes
{}
end
describe "PUT modify", :focus => true do
describe "PUT modify" do
include_context "data"
before do
@ -64,6 +39,18 @@ describe RecordsController do
end
end
# TODO implement me
__END__
# This should return the minimal set of attributes required to create a valid
# Record. As you add validations to Record, be sure to
# update the return value of this method accordingly.
def valid_attributes
{}
end
describe "GET index" do
it "assigns all records as @records" do
record = Record.create! valid_attributes

Loading…
Cancel
Save