Copyright Drecom Co.,Ltd. All Rights Reserved.
関連gem
● faker-precure
○ https://github.com/sue445/faker-precure
○ rubicureを使ってテストデータをランダム
作成する
15.
Copyright Drecom Co.,Ltd. All Rights Reserved.
使用例
require "faker/precure"
Faker::Precure.human_name
#=> "黄瀬やよい"
Faker::Precure.precure_name
#=> "キュアアクア"
Faker::Precure.title
#=> "Yes! プリキュア5
16.
Copyright Drecom Co.,Ltd. All Rights Reserved.
使用例 (with factory_girl)
FactoryGirl.define do
factory :user do
name { Faker::Precure.human_name }
end
end
17.
Copyright Drecom Co.,Ltd. All Rights Reserved.
他言語での実装
● Acme::PrettyCure
○ プリキュアのPerl実装
○ http://perl-users.jp/articles/advent-calendar/
2010/acme/6
● pycure
○ プリキュアのPython実装
○ https://github.com/drillbits/pycure