Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只是在写一些我不想放在类中的算法方法。所以我只是把它们放在我的 ruby 文件中。但是我不知道如何编写测试或更具体地使用描述:xxx,因为我没有在主要描述之后放置类名。有任何想法吗?
您可以在 describe 语句之后放置任何字符串:
describe "Something You Want To Test" do # Your specs here end