ruby – 任何适用于Erlang的RSpec工具?

前端之家收集整理的这篇文章主要介绍了ruby – 任何适用于Erlang的RSpec工具?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有像RSpec这样的东西描述它的Erlang框架吗?

解决方法

你见过espec: https://github.com/lucaspiller/espec吗?好像它可以有类似的语法
describe("#generate_headers",fun() ->
    it("should generate Host and User-Agent headers",fun() ->
        [
            {"Host","api.twitter.com"},{"User-Agent","Twerl"}
        ] = stream_client_util:generate_headers()
    end)
end).
原文链接:/ruby/264667.html

猜你在找的Ruby相关文章