Skip to content

Commit 1e12eb0

Browse files
committed
rails g decorator message
1 parent 1aec81d commit 1e12eb0

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# frozen_string_literal: true
2+
3+
module MessageDecorator
4+
end
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# frozen_string_literal: true
2+
3+
require 'test_helper'
4+
5+
class MessageDecoratorTest < ActiveSupport::TestCase
6+
def setup
7+
@message = Message.new.extend MessageDecorator
8+
end
9+
10+
# test "the truth" do
11+
# assert true
12+
# end
13+
end

0 commit comments

Comments
 (0)