Skip to content

Commit

Permalink
feat(test): starting integration test plan
Browse files Browse the repository at this point in the history
  • Loading branch information
Sayan751 committed Oct 8, 2019
1 parent 4338eca commit 2dce7d0
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions packages/__tests__/integration/test-plan.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
### `@aurelia/runtime`

#### call-binding

Assigns the result of the method call to the attribute.

```html
<el attr="func()"></el>
```

#### interpolation-binding

Evaluates interpolation expression.

### Test plan

#### Atoms

##### Read-only textual CE

**Usage:**

```html
<my-text value.bind="val-expr"></my-text>
```
TODO: need better name than `my-text`.

**Definition:**

```html
${value}
```

**Potential coverage targets**

- interpolation binding
- call-binding (with the help of a higher-level CE that binds the value using a method call)
- i18n (maybe later)

#### Molecules

##### Greetings

**Usage:**

```html
<greeting name.bind="expr" is-birthday.bind="expr"></greeting>
```

**Definition:**

```html
<my-text value.bind="getGreeting()"></my-text>
```

**Potential coverage targets**

- call-binding

0 comments on commit 2dce7d0

Please sign in to comment.