Sha256: 2e53a2f1d54706d09fcb5e0e85c770c0046635bb9fe1c396c75e259602ede04a

Contents?: true

Size: 567 Bytes

Versions: 1

Compression:

Stored size: 567 Bytes

Contents

class Shoes
  module Mock
    class TextBlock
      include Shoes::Mock::CommonMethods

      def initialize(dsl, opts = nil)
        @dsl = dsl
        @opts = opts
      end

      def redraw(*opts); end

      def replace(*opts)
      end

      def clear;end

      def contents_alignment(*args);end
    end

    class Banner < TextBlock; end
    class Title < TextBlock; end
    class Subtitle < TextBlock; end
    class Tagline < TextBlock; end
    class Caption < TextBlock; end
    class Para < TextBlock; end
    class Inscription < TextBlock; end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
shoes-4.0.0.pre1 lib/shoes/mock/text_block.rb