为 Rails 插件设置测试目录
我开始创建一个rails插件,其中包括Controller和Model的一些类和实例方法。 我首先尝试为模型设置测试。
在我的测试目录中添加一个模型目录。但我注意到 - 我的模型需要 geokit-rails 插件才能“acts_as_mappable”
如何将插件放入测试目录? 我尝试将其复制到 /test/plugins/geokit-rails 并将其包含在我的 test_helper 中?
require 'geokit'
require PLUGIN_ROOT + '/test/plugins/geokit-rails/lib/geokit-rails.rb'
我从插件中收到错误,
MissingSourceFile: no such file to load — geokit-rails/defaults
有什么建议吗?
I started to create a rails plugin which includes some class and instance methods of Controller and Model.
I fist tried to setup the tests for the Model.
Add a models directory in my test dir. But i noticed - i need the geokit-rails plugin for my model to be able to "acts_as_mappable"
How to get the plugin into the test dir?
I tryied to copy it to /test/plugins/geokit-rails and include it in my test_helper?
require 'geokit'
require PLUGIN_ROOT + '/test/plugins/geokit-rails/lib/geokit-rails.rb'
I get an error from the plugin
MissingSourceFile: no such file to load — geokit-rails/defaults
any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我让插件运行并在 geokit-rails/lib/geokit-rails.rb 中进行了一些更改
i got the plugin running with some changes in geokit-rails/lib/geokit-rails.rb