incompatibilities/spec/render/attribute_spec.md in faml-0.3.2 vs incompatibilities/spec/render/attribute_spec.md in faml-0.3.3
- old
+ new
@@ -229,11 +229,11 @@
```html
<span data-foo='1' data-bar='2'>hello</span>
```
-# [./spec/render/attribute_spec.rb:158](../../../spec/render/attribute_spec.rb#L158)
+# [./spec/render/attribute_spec.rb:168](../../../spec/render/attribute_spec.rb#L168)
## Input
```haml
%span{b: __LINE__,
a: __LINE__}
@@ -249,11 +249,11 @@
```html
<span a='1' b='1'></span>
```
-# [./spec/render/attribute_spec.rb:165](../../../spec/render/attribute_spec.rb#L165)
+# [./spec/render/attribute_spec.rb:175](../../../spec/render/attribute_spec.rb#L175)
## Input
```haml
%span{"foo\0bar" => "hello"}
```
@@ -267,11 +267,11 @@
```html
<span foo\0bar='hello'></span>
```
-# [./spec/render/attribute_spec.rb:165](../../../spec/render/attribute_spec.rb#L165)
+# [./spec/render/attribute_spec.rb:175](../../../spec/render/attribute_spec.rb#L175)
## Input
```haml
- val = "hello"
%span{"foo\0bar" => val}
@@ -287,10 +287,10 @@
```html
<span foo\0bar='hello'></span>
```
-# [./spec/render/attribute_spec.rb:165](../../../spec/render/attribute_spec.rb#L165)
+# [./spec/render/attribute_spec.rb:175](../../../spec/render/attribute_spec.rb#L175)
## Input
```haml
- key = "foo\0bar"
- val = "hello"
%span{key => val}