文章列表
rails测试之RSpec环境搭建
- 博客分类:
- RubyOnRails
bin/guard init spork #这一步将产生一个Guardfile文件
bin/guard init rspec #先运行spork,这样Guardfile中spork位于前面,否则会出错。
由于编程都是自学的,应用程度不高,很长一段时间都对测试方面避而不见。但看网上很多大牛都 ...
反正自己也是新手,生怕学来的东西给忘了……
ruby1.9.3-p194 rails3.2.8
rails new authen --skip-bundle
cd authen
rails g model user name:string salt:string hashed_pswd:string
rake db:migrate
编辑app/models/user.rb
class User < ActiveRecord::Base
attr_accessor :password, :pswd_confirmation
attr_accessible :password, ...