OSDN Git Service

Regular updates
authorErik <erikgronwal@users.osdn.me>
Wed, 18 Jan 2023 14:55:05 +0000 (23:55 +0900)
committerErik <erikgronwal@users.osdn.me>
Wed, 18 Jan 2023 14:55:05 +0000 (23:55 +0900)
capybara.md
markdown.md

index 7f36939..8dd4973 100644 (file)
@@ -138,6 +138,7 @@ expect(page).to \
 {: .-setup}
 
 ```ruby
+  have_current_path(expected_path)
   have_selector '.blank-state'
   have_selector 'h1#hola', text: 'Welcome'
   have_button 'Save'
index 1a31018..87f0e49 100644 (file)
@@ -60,11 +60,13 @@ ___bold italic___
 
 ```markdown
 * Item 1
+  * Nested Item 1
 * Item 2
 ```
 
 ```markdown
 - Item 1
+  - Nested Item 1
 - Item 2
 ```
 
@@ -98,10 +100,10 @@ ___bold italic___
 ```markdown
 ![Image alt text](/path/to/img.jpg)
 ![Image alt text](/path/to/img.jpg "title")
-![Image alt text][img]
 ```
 
 ```markdown
+![Image alt text][img]
 [img]: http://foo.com/img.jpg
 ```