Sha256: 143db838a6383b46195127b5b8039ca800c037fe94d75347571a86f4f87e23a9

Contents?: true

Size: 1.49 KB

Versions: 2

Compression:

Stored size: 1.49 KB

Contents

require 'spec_helper'

describe User do

  # attributes

  it "is defined" do
    should respond_to :id
  end

  # it "has a name" do
  #   should respond_to :name
  # end

  # associations

  # Uncomment if your model has associations.
  # See https://github.com/thoughtbot/shoulda
  #
  # it "belongs to a 'model'" do
  #   should belong_to :model
  # end

  # validations

  # See https://github.com/thoughtbot/factory_girl
  # This factory should only set the REQUIRED attributes.
  # it "has a valid factory" do
  #   FactoryGirl.build(:user).should be_valid
  # end
  #
  # Uncomment if your model has required attributes.
  # This factory should set no attributes and is useful when invalid
  # attributes or objects are required.
  # See FactoryGirl.attributes_for() documentation
  #
  # it "has an invalid factory" do
  #   FactoryGirl.build(:invalid_user).should_not be_valid
  # end

  # Uncomment if your model has required attributes
  #
  # This is the BDD way of testing attributes presence validation
  # See https://www.relishapp.com/rspec/rspec-rails/docs/model-specs/errors-on
  #
  # it "fails validation with no 'attribute'" do
  #   expect(Post.new).to have(1).error_on(:attribute)
  # end
  #
  # And this is an alternative way, which takes advantage of factories,
  # it's up to you to chose one, the other, or use both together.
  #
  # it "requires a 'name'" do
  #   FactoryGirl.build(:user, name: "").should_not be_valid
  # end

  # methods

  # Describe here you model methods behaviour.

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
simple_token_authentication-1.0.0.pre.5 test/dummy/spec/models/user_spec.rb
simple_token_authentication-1.0.0.beta.5 test/dummy/spec/models/user_spec.rb