mirror of
https://github.com/drapergem/draper
synced 2023-03-27 23:21:17 -04:00
6b5b0a77ee
This test tests the following Draper features: 1) finders 2) decorates 3) using a decorated method It also is the first test that verifies that the whole Cucumber setup actually works properly.
8 lines
126 B
Ruby
8 lines
126 B
Ruby
class CreatePosts < ActiveRecord::Migration
|
|
def change
|
|
create_table :posts do |t|
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|