Ruby-Running Tests von Eduonix Learning Solutions

video locked

Über den Vortrag

Der Vortrag „Ruby-Running Tests“ von Eduonix Learning Solutions ist Bestandteil des Kurses „Ruby on Rails Testing and Final Development“. Der Vortrag ist dabei in folgende Kapitel unterteilt:

  • Theoretical Basics
  • Model Test
  • Validation Test
  • Controller Test

Dozent des Vortrages Ruby-Running Tests

 Eduonix Learning Solutions

Eduonix Learning Solutions

Eduonix Learning Solutions - The Knowledge Edge

Eduonix creates and distributes high quality technology training content. The team of industry professionals have been training manpower for more than a decade. Eduonix aims to teach technology the way it is used in industry and professional world. The expertness of the professional team of trainers ranges from Mobility, Web to Enterprise as well as Database and Server Administration.

Kundenrezensionen

(1)
5,0 von 5 Sternen
5 Sterne
5
4 Sterne
0
3 Sterne
0
2 Sterne
0
1  Stern
0


Auszüge aus dem Begleitmaterial

... producing skeleton test code in the background while you are creating your models and controllers. By simply running your Rails tests ...

... have a separate database for testing. This will keep data ...

... a folder named “Test” with 5 ...

... the YAML file format # Sample YAML File post1: name: A sample ...

... or scaffolds, Rails will create test files for that resource. ...

... class PostTest < ActiveSupport::TestCase # Replace this with your real tests. test "the ...

... test_valid_password or like testValidPassword. But in test stubs, we can use more readable ...

... value = that value? If is an object nil? If a line of code throw an exception is a ...

... Your database should be current. So run Rake db:migrate To make sure ...

... a certain test ruby -Itest test/unit/post_test.rb -n test_the_truth Your result will look ...

... "if post has title" do post = Post.new(:title => “Some ...