Sha256: 19c58336fe2468534c97db3534b78ff31e5c240a838a84b6b6483491d85c857b

Contents?: true

Size: 439 Bytes

Versions: 3

Compression:

Stored size: 439 Bytes

Contents

require 'ronin/formatting/text'

require 'spec_helper'

describe String do
  before(:all) do
    @string = ""
  end

  it "should provide String#format_chars" do
    @string.respond_to?('format_chars').should == true
  end

  it "should provide String#format_bytes" do
    @string.respond_to?('format_bytes').should == true
  end

  it "should provide String#random_case" do
    @string.respond_to?('random_case').should == true
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ronin-0.1.2 spec/formatting/text_spec.rb
ronin-0.1.1 spec/formatting/text_spec.rb
ronin-0.1.3 spec/formatting/text_spec.rb