1
0
mirror of https://github.com/askn/faker.git synced 2023-08-10 21:13:01 +03:00

first commit

This commit is contained in:
Aşkın Gedik
2016-01-05 16:49:33 +02:00
commit 475d7312d8
17 changed files with 510 additions and 0 deletions

7
spec/faker_spec.cr Normal file
View File

@@ -0,0 +1,7 @@
require "./spec_helper"
describe Faker do
it "works" do
# Faker.numerify("###").match(/\d{3}/) { |md| md.size }.should eq 3
end
end

2
spec/spec_helper.cr Normal file
View File

@@ -0,0 +1,2 @@
require "spec"
require "../src/faker"