infrataster icon indicating copy to clipboard operation
infrataster copied to clipboard

Infrastructure Behavior Testing Framework

Results 17 infrataster issues
Sort by recently updated
recently updated
newest added

This is for fixing description. I think 'params' means querystring,so have to describe for http request body. In my investigation, infrataster can use 'body' as options.

What if I don't have an associated domain? I just want to hit the IP address of the vagrant VM? What should the parameter be for `http`?

``` ruby Server.define(:app) do |server| server.address '192.168.10.10' server.vagrant server.from :proxy server.mysql({user: 'user', password: 'password'}) end ```

I'm trying to test my apaches' behavior. It has few virtualhosts: localhost (for mod-status), site1 (http, https), site2 (http, https). If had defined to servers: ``` ruby # Ugly way...

It would be really great if we could integrate infrataster with our existing test-kitchen-based tests. We often use [Test Kitchen](http://kitchen.ci/) with the [kitchen-digitalocean driver](https://github.com/test-kitchen/kitchen-digitalocean) so that we can launch tests...

https://twitter.com/rubygems/status/542563567896367104 :)

This feature is useful when testing an api that accepts json in a request. If you are interested I can make a pull request. I have written a spec or...

I think this was missed when the mysql_query functionality was split into the plugin. This should be placed in the mysql plugin instead of in the core code

I have a server which runs sshd which is not running on the standard port. My question is, how do I specify this in my `spec_helper.rb` ? I tried: ```...