Louis | Adds clients model & views to db

This commit is contained in:
Loos
2014-09-16 20:50:58 -04:00
parent 3c8962fa49
commit d3403e18cd
17 changed files with 237 additions and 21 deletions
+6
View File
@@ -0,0 +1,6 @@
# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :client do
end
end
+5
View File
@@ -0,0 +1,5 @@
require 'spec_helper'
describe Client do
pending "add some examples to (or delete) #{__FILE__}"
end