タグ

関連タグで絞り込む (2)

タグの絞り込みを解除

serverspecに関するyubessyのブックマーク (2)

  • vagrant-serverspecを使ってサーバをテストする。 - ksaitoの日記

    vagrantを使って作成したサーバをserverspecでテストします。 vagrant upでインスタンスの作成とサーバのテストを統合するためにvagrant-serverspecプラグインを使う手順です。 vagrant-serverspecでテストする手順 インストール vagrant-serverspecプラグインをインストールします。 $ vagrant --version Vagrant 1.8.1 $ vagrant plugin install vagrant-serverspec Installing the 'vagrant-serverspec' plugin. This can take a few minutes... Installed the plugin 'vagrant-serverspec (1.1.0)'! $ テストケースの作成 serverspe

    vagrant-serverspecを使ってサーバをテストする。 - ksaitoの日記
  • vagrant-serverspec で TDD ライクにサーバ構築を行う

    Shin x blog Advent Calendar 2013 の 24 日目です。 先日リリースされた vagrant-serverspec を使って、テストドリブンなサーバ構築を行ってみました。 vagrant-serverspec は、サーバ、インフラの状態をテストするツール serverspec を Vagrant のプロビジョナとして実行できるプラグインです。これを使うことで、vagrant コマンドから、serverspec のテストを実行することができます。 詳しくは、@ryuzee さんの下記エントリを参照して下さい。 vagrant-serverspecを使ってプロビジョニング結果をテストする | Ryuzee.com 仕様 今回構築するサーバの仕様は下記です。PHP 5.5.x をインストールして、ビルトインサーバを起動するというものです。(※ちなみにビルトインサーバ

  • 1