タグ

autotestに関するiR3のブックマーク (3)

  • autotestとRSpecを使う

    色々見たけどgithub見るのが一番早かった https://github.com/rspec/rspec/wiki/autotest まずはRSpecとZenTestをインストールする。 % gem install rspec % gem install ZenTest ~/.rspecに書いたRSpecの設定はこんなん。 # /.rspec --format nested --color ファイル保存のタイミングでテストを実行してくれるようにautotest-fseventを、 テスト結果をgrowlで通知してくれるようにautotest-growlを入れる。 % gem install autotest-fsevent autotest-growl ~/.autotestを作って、以下を書く。 # Include plugins require 'autotest/fsevent'

    iR3
    iR3 2013/08/21
  • RSpec で autotest - tmtms のメモ

    自分は Ruby コードの単体テストに RSpec を使ってるんですが、プログラムコードやテストコードを更新する度にいちいち手動でテストを実行していました。 autotest というのを使えば自動でテストが実行されるという話は聞いていたので、ちょっと調べてみました。 使用しているバージョンは RSpec 2.3.0, ZenTest 4.4.2 です。 インストール autotest は ZenTest という gem に入っているのでそれをインストールします。 # gem install ZenTest 実行 プロジェクトのトップディレクトリからのツリーが次のようになっている場合、 ./lib/hoge.rb ./lib/fuga.rb ./spec/hoge_spec.rb ./spec/fuga_spec.rb次のように実行します。 % autotest --style rspec2

    RSpec で autotest - tmtms のメモ
  • 僕は発展途上技術者

    This is English translation of 東京にいながらにしてインターナショナルな環境でプログラマー(Rubyist)として働くというお話 that I wrote in 2015. The translation is provided by ChatGPT. The day of RubyKaigi has come around again this year. After RubyKaigi ends, it's almost a tradition for everyone to say, 'Ah, I wish I could speak better English.' My first time attending a Ruby conference was already 7 years ago, and compared to back then,

  • 1