如何使用rspec来验证ruby代码?

发布于 2024-09-14 00:36:24 字数 949 浏览 4 评论 0原文

class UbacParser
    def initialize(str)
        @str= str
        @valid= true
        base_parse
    end

    private
    def base_parse
        @protocol_code = Integer(@str[0..2]) rescue nil
        begin
        @data = @str[@str.index('<')[email protected]('>')-1] 
        str_mod = @str[@str.index('>##')+1..-1] 

        arr_mod=str_mod[2..-3].split(',')
        @hash_mod=Hash.new
        arr_mod.each_index { |i| @hash_mod[arr_mod[i].split('=')[0]]=arr_mod[i].split('=')[1] }
        rescue
            puts "error in data_parse"
            @valid=false
        end
    end

    public
    def valid?

        return @valid;
    end

    def [](key)
        unless @valid: return 
        end
        @hash_mod[key.upcase]
    end

end

我如何为这个 Ruby 类代码编写 rspec 验证器/测试用例?

请帮忙

class UbacParser
    def initialize(str)
        @str= str
        @valid= true
        base_parse
    end

    private
    def base_parse
        @protocol_code = Integer(@str[0..2]) rescue nil
        begin
        @data = @str[@str.index('<')[email protected]('>')-1] 
        str_mod = @str[@str.index('>##')+1..-1] 

        arr_mod=str_mod[2..-3].split(',')
        @hash_mod=Hash.new
        arr_mod.each_index { |i| @hash_mod[arr_mod[i].split('=')[0]]=arr_mod[i].split('=')[1] }
        rescue
            puts "error in data_parse"
            @valid=false
        end
    end

    public
    def valid?

        return @valid;
    end

    def [](key)
        unless @valid: return 
        end
        @hash_mod[key.upcase]
    end

end

How do i write a rspec validator / test case for this Ruby Class code?

Please help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无声无音无过去 2024-09-21 00:36:24

我建议您查看 rspec 网站,然后从头开始编写规范。这将是一个很好的学习练习,可以帮助您编写可测试的代码。

I suggest you have a look at the rspec website and restart from scratch by writing the specs first. It would be a good learning exercise and help you write testable code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文