我正在尝试学习rspec.我似乎无法测试轨道控制器的方法.当我在测试中调用该方法时,rspec只是返回一个未定义的方法错误.这是我的测试例子
it 'should return 99 if large' do GamesController.testme(1000).should == 99 end
这里是错误:
Failure/Error: GamesController.testme(1000).should == 99 NoMethodError: undefined method `testme' for GamesController:Class
我在GamesController中有一个测试方法.我不明白为什么测试代码看不到我的方法.
任何帮助是赞赏.